home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 6_functions / rest < prev    next >
Text File  |  2001-03-21  |  524b  |  22 lines

  1. Synopsis:
  2.    $rest(<start> <text>)
  3.  
  4. Technical:
  5.    The $rest() function returns the given test starting at the position
  6.    specified by <start>.
  7.  
  8. Practical:
  9.    This function is mostly useful when you know you want to always remove
  10.    the first few characters from an input string, regardless of what they
  11.    are.
  12.    
  13. Returns:
  14.    <text> with <start> number of characters removed from the front
  15.  
  16. Examples:
  17.    $rest(4 foobarfnord)                 returns "arfnord"
  18.  
  19. See Also:
  20.    left(6); right(6); mid(6)
  21.  
  22.